home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form sample1
- BackColor = &H00C0C0C0&
- BorderStyle = 1 'Fixed Single
- Caption = "Change Me!"
- ClientHeight = 1890
- ClientLeft = 4215
- ClientTop = 1305
- ClientWidth = 2235
- Height = 2295
- Left = 4155
- LinkTopic = "Form1"
- MaxButton = 0 'False
- ScaleHeight = 126
- ScaleMode = 3 'Pixel
- ScaleWidth = 149
- Top = 960
- Width = 2355
- Begin CommandButton Command1
- BackColor = &H00C0C0C0&
- Caption = "Select"
- Height = 465
- Left = 630
- TabIndex = 0
- Top = 1110
- Width = 1035
- End
- Begin CommonDialog cd
- CancelError = -1 'True
- Left = 1290
- Top = 2520
- End
- Begin Image i1
- BorderStyle = 1 'Fixed Single
- Height = 510
- Left = 870
- Picture = SAMPLE1.FRX:0000
- Top = 330
- Width = 510
- End
- Option Explicit
- Sub command1_click ()
- ChngIcon.Show 1
- i1 = ChngIcon.loader.Image
- Unload ChngIcon: Set ChngIcon = Nothing
- End Sub
- Sub Form_Load ()
- tx = screen.TwipsPerPixelX: ty = screen.TwipsPerPixelY
- End Sub
- Sub Form_Paint ()
- RaiseForm Me
- Sink Me, i1
- End Sub
-